home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-201-c / sfx ƒ / sfx init ƒ / code ƒ / program globals.h < prev    next >
Text File  |  1994-07-11  |  2KB  |  56 lines

  1. /**********************************************************************\
  2.  
  3. File:        program globals.h
  4.  
  5. Purpose:    This is the header file for all the program-specific
  6.             global variables, #defines, enums, and structs.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #ifndef _PROGRAM_GLOBALS_H_
  26. #define _PROGRAM_GLOBALS_H_
  27.  
  28. #define CREATOR            '2fx2'
  29. #define    USED_TYPE        'Fade'
  30. #define UNUSED_TYPE        'Fad0'
  31. #define MODULE_FOLDER    "\pMSG Fades"
  32.  
  33. enum
  34. {
  35.     allsWell=0,
  36.     kSystemTooOld,
  37.     kCantGetProc10Resource,
  38.     kCantGetProc11Resource,
  39.     kNoMemoryInSystemHeap,
  40.     kCantMakeNewGestalt,
  41.     kGestaltImproperlyInstalled,
  42.     kCantFindSystemFolder,
  43.     kCantFindModuleFolder,
  44.     kNoModulesInFolder,
  45.     kCantOpenModule,
  46.     kModuleDamaged,
  47.     kCantGetModuleInfo,
  48.     kNoModulesInstalled,
  49.     kPrefsError
  50. };
  51.  
  52. extern    short            gModuleIndex;
  53. extern    char            gChooseRandom, gOnRestart, gOnShutdown, gFadeEarly;
  54.  
  55. #endif
  56.